zognc  
zogna nds calculator is FREE NDS Applications!
============================================
operating manual  2009.9.28 for v0.14
=============================================
Author:zogna
E-mail:gbaup_01@163.com
MAINSITE:http://code.google.com/p/zognc/
=============================================
Pass The Test:R4,DSTT,AK2,AK2i,M3DSR,Hyper-R4i,EZ5
=============================================
1.an operation
	MAX input 760 characters
	MAX input 120 numbers

2.each number used 32 bit!
	Hexadecimal MAX xFFFFFFFF (8)
	Binary      MAX b1111.... (32)
  if more than 32bit will to cut out "last 32 bit" 
	
3.key:'backspace',only the current row !

=============================================
priority 

~ ( ) optimal priority 
< >  2
&    3
^    4
|    lowest priority 

==============================================
key: up as (And &)
key: down as (OR |)
key: left as (NOT ~)
key: down as (XOR ^)

key: Y as )
key: A as (
key: B as backspace
key: X as =
==============================================
bin : add binary sign example: b1010101
Hex :add hexadecimal sign example :xABFA
Default is Decimal numerals ,need not add sign

<<:left shift , example: xf>3=1
>>:right shift ,example b1<3=8

And: & example: b101&xE=4
Or:  | example: b101&xE=xF
Not: ~ example: ~b10101011=xFFFFFF54
Xor: ^ example: b101^xE=xb

C:clear screen
====ouput=====================================

Dec=signed decimal or unsigned decimal
Bin=32bit binary
Hex=8bit hexadecimal

====example=====================================

x1F|b101^10&x3E>~xFFFFFFEE=x1F  

39|((b100|xb1)>((xeb^23)&4))<~xFFFFFFFB=xb7

===MUST REMEMBER priority AND sign===